home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / news / inn1.000 / inn1.4sec-linux-src.tar / inn / lib / mkfifo.c < prev    next >
C/C++ Source or Header  |  1992-02-12  |  215b  |  18 lines

  1. /*  $Revision: 1.1 $
  2. **
  3. */
  4. #include <sys/types.h>
  5. #include <sys/stat.h>
  6.  
  7.  
  8. /*
  9. **  Call mknod(2) to make a fifo.
  10. */
  11. int
  12. mkfifo(path, mode)
  13.     char    *path;
  14.     int        mode;
  15. {
  16.     return mknod(path, S_IFIFO | mode, 0);
  17. }
  18.